home *** CD-ROM | disk | FTP | other *** search
/ 3DFX Velocity 100 / 3DFX Velocity 100.iso / Drivers / nt351 / MDISK351.BAT < prev    next >
Encoding:
DOS Batch File  |  1999-03-01  |  855 b   |  30 lines

  1. @echo Off
  2. rem This file creates an install disk for 3DFx Voodoo Banshee NT 3.51 drivers
  3. rem Run this in the correct build environment to make the drivers
  4. rem All the archives must have already been checked out for this script
  5. rem to run.
  6.  
  7. @echo Building NT miniport driver...
  8. rem Build the NT miniport driver
  9. cd %SRCDIR%\src\video\miniport\h3
  10. copy sources.351 sources
  11. build -cef
  12.  
  13. @echo Building NT display driver...
  14. rem Build the NT display driver
  15. cd %DDKBASE%\src\video\displays\framebuf
  16. build -cef
  17.  
  18. @echo Making install disk...
  19. @echo Please insert blank disk in A:
  20. @echo CTRL-C to abort, any key to continue
  21. pause
  22. label A: NTSTBDRV351
  23. rem Copy the drivers to disk
  24. cd %BASEDIR%\src\video\set351
  25. copy disk1 a:\
  26. copy oemsetnt.inf a:\
  27. copy %DDKBASE%\lib\i386\free\banshee.sys a:\
  28. copy %DDKBASE%\lib\i386\free\framebuf.dll a:\
  29.  
  30.